lispref/internals.texi Memory Usage tiny change
authorGlenn Morris <rgm@gnu.org>
Sat, 3 Mar 2012 04:18:09 +0000 (20:18 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 3 Mar 2012 04:18:09 +0000 (20:18 -0800)
* doc/lispref/internals.texi: (Memory Usage): Copyedit.

* src/alloc.c (misc-objects-consed): Doc fix.

doc/lispref/ChangeLog
doc/lispref/internals.texi
src/ChangeLog
src/alloc.c

index 02cdcf469c819c93a08692f36b30eb382f41e0bf..1ae0b6554dc98a53ee1d63205b14b1949253dbd5 100644 (file)
@@ -4,6 +4,7 @@
        (Building Emacs): Say less about CANNOT_DUMP platforms.
        Replace deleted eval-at-startup with custom-initialize-delay.
        (Pure Storage): Small changes.
+       (Memory Usage): Copyedit.
 
        * tips.texi: Copyedits.
        (Coding Conventions): Mention autoloads.
index 35759d39f1d267bbbc435469892ae26aa951207f..bab96582302ed8ff4a9071bf514fd785ab1e3516 100644 (file)
@@ -456,7 +456,7 @@ point number.
   These functions and variables give information about the total amount
 of memory allocation that Emacs has done, broken down by data type.
 Note the difference between these and the values returned by
-@code{(garbage-collect)}; those count objects that currently exist, but
+@code{garbage-collect}; those count objects that currently exist, but
 these count the number or size of all allocations, including those for
 objects that have since been freed.
 
index b920be37c5b1c3401d309633b3ae229df9edeb1b..25f1d7bf5c68c81e1724e7536e60cce3dd905034 100644 (file)
@@ -1,6 +1,6 @@
 2012-03-03  Glenn Morris  <rgm@gnu.org>
 
-       * alloc.c (Fgarbage_collect): Doc fix.
+       * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
 
 2012-03-02  Eli Zaretskii  <eliz@gnu.org>
 
index 29388870d93c9fd090186e492e35085f1e6a72a1..f85661415cdd80bbd298afe0a958c5f4530a397c 100644 (file)
@@ -6446,7 +6446,9 @@ If this portion is smaller than `gc-cons-threshold', this is ignored.  */);
              doc: /* Number of string characters that have been consed so far.  */);
 
   DEFVAR_INT ("misc-objects-consed", misc_objects_consed,
-             doc: /* Number of miscellaneous objects that have been consed so far.  */);
+             doc: /* Number of miscellaneous objects that have been consed so far.
+These include markers and overlays, plus certain objects not visible
+to users.  */);
 
   DEFVAR_INT ("intervals-consed", intervals_consed,
              doc: /* Number of intervals that have been consed so far.  */);